home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / www / cgi-bin / pid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-11  |  116 b   |  13 lines

  1. #include <sys/types.h>
  2. #include <unistd.h>
  3.  
  4. main() {
  5.  
  6.     pid_t pid;
  7.  
  8.     pid = getpid();
  9.     printf("%d",pid);
  10. }
  11.  
  12.  
  13.